home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / rexx / startup.agaiff < prev    next >
Text File  |  1996-05-13  |  624b  |  34 lines

  1. /* AREXX-Script > Startup.agaiff
  2.  *
  3.  * This one is called once when AGAiff is started, so you can easily
  4.  * put your preferences here...
  5.  *
  6.  */
  7.  
  8. address "AGAIFF_REXX"
  9.  
  10. CLEARPRESETS
  11. SFORMAT RAW FILE
  12. CFORMAT NOCOLS
  13. ADDPRESET '"RAW, no colors"'
  14. SFORMAT RAWI
  15. ADDPRESET '"RAW int., no colors"'
  16. SFORMAT COPPER DC
  17. CFORMAT 12BIT
  18. ADDPRESET '"Copperlist 12 Bit dc."'
  19. CFORMAT 24BIT
  20. ADDPRESET '"Copperlist 24 Bit dc."'
  21. SFORMAT SPRITE DC
  22. CFORMAT NOCOLS 12BIT
  23. ADDPRESET '"Sprite dc."'
  24. SFORMAT RAWI FILE
  25. CFORMAT 12BIT TOP
  26. ADDPRESET '"RAW int., Top12Bit"'
  27.  
  28. SETPRESET '"RAW, no colors"'
  29.  
  30. options results
  31.  
  32. STATUS 7
  33. if result = 1 then SHOWGUI
  34.